Skip Navigation Links.

H5T..::..enumNameOf<(Of <(<'Type>)>)> Method

Returns the symbol name corresponding to a specified member of an enumeration datatype. http://www.hdfgroup.org/HDF5/doc/RM/RM_H5T.html#Datatype-EnumNameOf

Namespace:  HDF5DotNet
Assembly:  HDF5DotNet (in HDF5DotNet.dll)

Syntax

Visual Basic
Public Shared Function enumNameOf(Of Type) ( _
	typeId As H5DataTypeId, _
	ByRef value As Type _
) As String
C#
public static string enumNameOf<Type>(
	H5DataTypeId typeId,
	ref Type value
)
Visual C++
public:
generic<typename Type>
static String^ enumNameOf(
	H5DataTypeId^ typeId, 
	Type% value
)
JavaScript
JavaScript does not support generic types or methods.

Parameters

typeId
Type: HDF5DotNet..::..H5DataTypeId
IN: Enumeration datatype identifier.
value
Type: Type%
In: Value of the enumeration datatype.

Type Parameters

Type

Return Value

String containing symbolic name for the specified value.

Exceptions

ExceptionCondition
HDF5DotNet..::..H5TenumNameOfException throws H5TenumNameOfException on failure.

See Also